-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buttons use only before psuedo #4628
Conversation
} | ||
|
||
&:active::after { | ||
&:active::before { | ||
opacity: .06; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually decreases the opacity, when what we really want is to increase it. I think you mean .18
here (.12
+ another .06
)
💎 LGTM besides that one comment. |
LGTM other than @traviskaufman's comment. |
Fixed the opacity issue. |
Once CI passes since everything else is un-changed I'll go ahead and merge. |
Let Tooltips have control over the after psuedo element so they will inter-operate with buttons.
So, PTAL again just to verify I'm not insane. I saw we had a duplicate selector fixing the linting issue so I compressed it. Shouldn't cause any problems but.... this is CSS. |
💎 You are, indeed, not insane :) LGTM! |
Make buttons use only the before pseudo. This allows tooltips to have
after
to themselves for them to inter-operate.